home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
tools
/
czesc_1
/
easyprocess
/
source
/
launch
/
freepplist.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-09-07
|
504b
|
34 lines
#include <arpbase.h>
#include <arp_proto.h>
#include "Launch.h"
#include "LaunchPriv.h"
/*
* NAME
* FreeProcPairList -- check if the list is empty and free it.
*
* SYNOPSIS
* FreeProcPairList ()
*
* void FreeProcPairList (void);
*
* INPUT
* None.
*
* OUTPUT
* None.
*
* HISTORY
* 1992/09/06 Pierre Baillargeon Creation
*/
void FreeProcPairList (void)
{
if (NULL == ProcPairList->lh_Head->ln_Succ)
{
FreeMem (ProcPairList, sizeof (struct List));
ProcPairList = NULL;
}
}